Gets the list of entries which fall within a time range.

Namespace:  Janus
Assembly:  Janus (in Janus.dll)

Syntax

C#
public TimelineEntry<T>[] GetRange(
	double startTime,
	bool isStartTimeInclusive,
	double endTime,
	bool isEndTimeInclusive,
	bool isTimeAbsolute
)

Parameters

startTime
Type: System..::..Double
The lower time bound.
isStartTimeInclusive
Type: System..::..Boolean
Whether or not the start time is inclusive.
endTime
Type: System..::..Double
The upper time bound.
isEndTimeInclusive
Type: System..::..Boolean
Whether or not the end time is inclusive.
isTimeAbsolute
Type: System..::..Boolean
Whether or not te specified time is absolute.

Return Value

The list of entries which fall within the specified time range.

See Also